home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / meschach / !Meschach / c / version < prev    next >
Text File  |  1994-03-24  |  3KB  |  72 lines

  1.  
  2. /**************************************************************************
  3. **
  4. ** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
  5. **
  6. **                 Meschach Library
  7. ** 
  8. ** This Meschach Library is provided "as is" without any express 
  9. ** or implied warranty of any kind with respect to this software. 
  10. ** In particular the authors shall not be liable for any direct, 
  11. ** indirect, special, incidental or consequential damages arising 
  12. ** in any way from use of the software.
  13. ** 
  14. ** Everyone is granted permission to copy, modify and redistribute this
  15. ** Meschach Library, provided:
  16. **  1.  All copies contain this copyright notice.
  17. **  2.  All modified copies shall carry a notice stating who
  18. **      made the last modification and the date of such modification.
  19. **  3.  No charge is made for this software or works derived from it.  
  20. **      This clause shall not be construed as constraining other software
  21. **      distributed on the same medium as this software, nor is a
  22. **      distribution fee considered a charge.
  23. **
  24. ***************************************************************************/
  25.  
  26.  
  27. /*            Version routine            */
  28. /*    This routine must be modified whenever modifications are made to
  29.     Meschach by persons other than the original authors
  30.     (David E. Stewart & Zbigniew Leyk); 
  31.     when new releases of Meschach are made the
  32.     version number will also be updated
  33. */
  34.  
  35. #include    <stdio.h>
  36.  
  37. void    m_version()
  38. {
  39.     static char rcsid[] = "$Id: version.c,v 1.9 1994/03/24 00:04:05 des Exp $";
  40.  
  41.     printf("Meshach matrix library version 1.2b\n");
  42.     printf("RCS id: %s\n",rcsid);
  43.     printf("Changes since 1.2a:\n");
  44.     printf("\t Fixed bug in schur() for 2x2 blocks with real e-vals\n");
  45.     printf("\t Fixed bug in schur() reading beyond end of array\n");
  46.     printf("\t Fixed some installation bugs\n");
  47.     printf("\t Fixed bugs & improved efficiency in spILUfactor()\n");
  48.     printf("\t px_inv() doesn't crash inverting non-permutations\n");
  49.     /**** List of modifications ****/
  50.     /* Example below is for illustration only */
  51.     /* printf("Modified by %s, routine(s) %s, file %s on date %s\n",
  52.             "Joe Bloggs",
  53.             "m_version",
  54.             "version.c",
  55.             "Fri Apr  5 16:00:38 EST 1994"); */
  56.     /* printf("Purpose: %s\n",
  57.             "To update the version number"); */
  58. }
  59.  
  60. /* $Log: version.c,v $
  61.  * Revision 1.9  1994/03/24  00:04:05  des
  62.  * Added notes on changes to spILUfactor() and px_inv().
  63.  *
  64.  * Revision 1.8  1994/02/21  04:32:25  des
  65.  * Set version to 1.2b with bug fixes in schur() and installation.
  66.  *
  67.  * Revision 1.7  1994/01/13  05:43:57  des
  68.  * Version 1.2 update
  69.  *
  70.  
  71.  * */
  72.